Q3Vector3D_Set
You can use theQ3Vector3D_Set
function to set the scalar components of a three-dimensional vector.
TQ3Vector3D *Q3Vector3D_Set ( TQ3Vector3D *vector3D, float x, float y, float z);
vector3D
- A three-dimensional vector.
x
- The x scalar component of the vector.
y
- The y scalar component of the vector.
z
- The z scalar component of the vector.
DESCRIPTION
TheQ3Vector3D_Set
function returns, as its function result and in thevector3D
parameter, the three-dimensional vector whose scalar components are specified by thex
,y
, andz
parameters.